home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 August
/
Macworld (1999-08).dmg
/
Serious Software
/
Geo3D 1.4.3
/
Sample Scripts
/
Groups
< prev
next >
Wrap
Text File
|
1999-03-23
|
452b
|
18 lines
tell application "Geo3D"
activate
make new document
set x to import groups from file ":Sample Scripts:Demo.grp"
if x > 0 then -- 0: error; x includes menu separators!
full screen
repeat with x from 1 to x
show group x -- without multi (default)
end repeat
show -- show all
show with multi -- hide all
repeat with x from 1 to 4
show group x with multi
end repeat
show group 3 with multi -- hide group 3
stack
end if
end tell